home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000159_fdc@watsun.cc.columbia.edu_Mon May 21 12:35:14 EDT 2001.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  65 lines

  1. Article: 12457 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!fdc
  3. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.unix.solaris,comp.sys.mac.comm,comp.protocols.kermit.misc
  5. Subject: Re: ncftpget, NetPresenz, and recursive directory transfers
  6. Date: 21 May 2001 16:27:51 GMT
  7. Organization: Columbia University
  8. Lines: 47
  9. Distribution: inet
  10. Message-ID: <9ebfm7$3qe$1@newsmaster.cc.columbia.edu>
  11. References: <9ea6dh$f0f@cokie.wellesley.edu>
  12. NNTP-Posting-Host: watsun.cc.columbia.edu
  13. X-Trace: newsmaster.cc.columbia.edu 990462471 3918 128.59.39.2 (21 May 2001 16:27:51 GMT)
  14. X-Complaints-To: postmaster@columbia.edu
  15. NNTP-Posting-Date: 21 May 2001 16:27:51 GMT
  16. Xref: newsmaster.cc.columbia.edu comp.unix.solaris:327450 comp.sys.mac.comm:319200 comp.protocols.kermit.misc:12457
  17.  
  18. In article <9ea6dh$f0f@cokie.wellesley.edu>,
  19. Kirsten Chevalier <kirsten@rover.wellesley.edu> wrote:
  20. : ... I'm currently
  21. : trying to move over all the user accounts from the Mac to the Sun. Since we
  22. : have about 80 users, I'd like to do this automatically. Browsing around on
  23. : the web, I found out about ncftpget and its "get -R" command ...
  24. : It wasn't that simple. (It's never that simple.) ...
  25. :
  26. I don't know if this will help because I've never had access to a Mac-based
  27. FTP server, but here is a new UNIX-based FTP client that does recursive
  28. GETs, and they work with a variety of UNIX and non-UNIX servers -- but have
  29. never been tried with a Mac:
  30.  
  31.   http://www.columbia.edu/kermit/ftpclient.html
  32.  
  33. It should only take you a few minutes to verify whether it works or not.
  34. The commands would be something like this:
  35.  
  36.   ftp wilber
  37.   [ log in ... ]
  38.   rcd <remote-directory-name>  ; RCD = Remote CD
  39.   cd <local-directory-name>
  40.   get /recursive *
  41.  
  42. Or maybe "get /recursive :" (I'm not sure what the syntax would be for the
  43. Mac FTP server).  Let me know how it goes.  If it "almost works", I'll see
  44. what I can do to make it really work (the software in question is C-Kermit
  45. 7.1 Beta.01, so there is still a little time to make changes before the
  46. final release).
  47.  
  48. However, one final caution: even if it works, who knows what the results will
  49. look like on UNIX.  Mac files have two "forks", which don't mean anything to
  50. UNIX.  Does the Mac server send just the data fork?  Or both?  If both, does
  51. it use some kind of syntax or protocol to mark them?  etc etc.
  52.  
  53. Also note that the text-file formats are different between MacOS and UNIX.
  54. The new FTP server will actually take care of that for you automatically
  55. if you let it know that naming conventions on the server; this will let it
  56. switch per-file between text and binary mode.  Or you can force the entire
  57. transfer to be in text (or binary) mode.
  58.  
  59. More about the new FTP client here:
  60.  
  61.   http://www.columbia.edu/kermit/ftpscripts.html     <-- Scripting tutorial
  62.   http://www.columbia.edu/kermit/ckermit3.html#x3    <-- Complete docs
  63.  
  64. - Frank
  65.